From af8a760ad2d54bd1f1513804e67a59ac03cd1eb5 Mon Sep 17 00:00:00 2001 From: Jeremy Bryant Date: Sat, 9 Mar 2024 22:08:57 +0000 Subject: [PATCH] ; * which-key.el (which-key--get-keymap-bindings-1): Use eql. --- which-key.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/which-key.el b/which-key.el index 54ec92d2311..dcb5af7ce7d 100644 --- a/which-key.el +++ b/which-key.el @@ -1886,7 +1886,7 @@ Requires `which-key-compute-remaps' to be non-nil." (or all ;; event 27 is escape, so this will pick up meta ;; bindings and hopefully not too much more - (and (numberp ev) (= ev 27)))) + (eql ev 27))) (setq bindings (which-key--get-keymap-bindings-1 keymap bindings key nil all ignore-commands))) -- 2.30.2